home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / coffeetycoon_Demo.swf / scripts / DefineButton2_1325 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2006-06-13  |  366 b   |  17 lines

  1. on(rollOver){
  2.    var ll;
  3.    ll = _root.get_poplevel();
  4.    if(_root.antstats[_root.gc_pop] >= parseInt(_root.poplevel[ll] * 0.75))
  5.    {
  6.       this.good._visible = true;
  7.    }
  8.    else if(_root.antstats[_root.gc_pop] < parseInt(_root.poplevel[ll] * 0.45))
  9.    {
  10.       this.bad._visible = true;
  11.    }
  12.    else
  13.    {
  14.       this.neutral._visible = true;
  15.    }
  16. }
  17.